From 7d5ea502db6e016291ad4c57c852d13747674fdc Mon Sep 17 00:00:00 2001 From: real-zephex Date: Mon, 27 May 2024 01:06:32 +0530 Subject: =?UTF-8?q?=F0=9F=8E=A8=20refactor(ui):=20Update=20background=20im?= =?UTF-8?q?age=20for=20info=20page=20and=20home=20page,=20and=20fix=20vide?= =?UTF-8?q?o=20loading=20issue?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/kdrama/[id]/page.jsx | 75 +++++++++++++++++++++++++------------------- 1 file changed, 43 insertions(+), 32 deletions(-) (limited to 'src/app/kdrama/[id]/page.jsx') diff --git a/src/app/kdrama/[id]/page.jsx b/src/app/kdrama/[id]/page.jsx index 90acded..ce8b6ba 100644 --- a/src/app/kdrama/[id]/page.jsx +++ b/src/app/kdrama/[id]/page.jsx @@ -11,39 +11,50 @@ export default async function DramaInfo({ params }) { PreFetchVideoLinks(data.episodes, data.id); return ( -
-
- Anime Title Poster -
-

- {data.title} -

-
- {data.genres && - data.genres.map((item, index) => ( - -

{item}

-
- ))} +
+
+
+
+ Anime Title Poster +
+

+ {data.title} +

+
+ {data.genres && + data.genres.map((item, index) => ( + +

{item}

+
+ ))} +
+
-
-
- - -
-
-
+ + +
+
+
+
+ ); } -- cgit v1.2.3